I know the terms are sometimes used loosely, but do you have a video you can point me to on Face Recognition, not face detection? I've found some code on the subject, but nothing like a walkthru in video, especially when dealing with images! https://github.com/bytefish/opencv
I've looked at Google's OpenFace (which uses Neural Networks), but can't find any videos about it.
I did find other face recognition examples, but they use FisherFaces, http://hanzratech.in/2015/02/03/face-recognition-using-opencv.html http://scottlobdell.me/2014/01/facial-recognition-in-python/
which, from what I've read, is not as consistent as using an algorithm based on Eigenfaces or Neural Networks: https://www.raspberrypi.org/forums/viewtopic.php?f=38&t=85755 http://eyalarubas.com/face-detection-and-recognition.html http://www.shervinemami.info/faceRecognition.html
You must be logged in to post. Please login or register an account.
If you followed the OpenCV series, at the end we covered general object recognition and detection.
We used a watch, for example.
If you wanted to do watch detection, then you would train with a bunch of positive samples of different watches.
If you wanted watch recognition, then you train a bunch of samples generated all from the same watch (which is what we did). You can do the same thing with a face with relatively decent accuracy. Beyond that, I don't have anything to offer.
-Harrison 8 years ago
You must be logged in to post. Please login or register an account.